FlexReport for UWP | ComponentOne
C1.UWP.Document Assembly / C1.Xaml.Document Namespace / C1DocumentSource Class / AddToLog Method / AddToLog(LogEntrySeverity,String,Object[]) Method
The severity of the log entry.
The format string used to build message of the log entry.
The arguments used to build message of the log entry.

In This Topic
    AddToLog(LogEntrySeverity,String,Object[]) Method
    In This Topic
    Adds log entry to the Log list.
    Syntax
    'Declaration
     
    Public Overloads Function AddToLog( _
       ByVal severity As LogEntrySeverity, _
       ByVal format As String, _
       ByVal ParamArray args() As Object _
    ) As LogEntry
    public LogEntry AddToLog( 
       LogEntrySeverity severity,
       string format,
       params object[] args
    )

    Parameters

    severity
    The severity of the log entry.
    format
    The format string used to build message of the log entry.
    args
    The arguments used to build message of the log entry.

    Return Value

    The created LogEntry object.
    See Also